home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 35 / pmtest.zip / FAILCASE.C next >
Text File  |  1989-11-30  |  863b  |  30 lines

  1.  
  2.   /**************************************************************************/
  3.   /*           (C) Copyright 1989 Princeton Windowing Systems               */
  4.   /*                       All Rights Reserved                              */
  5.   /**************************************************************************/
  6.  
  7. /*************************************************************************
  8. *
  9. *  SOURCE FILE NAME:  failcase.c
  10. *
  11. *  DESCRIPTION:       Example of program which returns a FALSE in the DosExit
  12. *                     to indicate the failure of a case.
  13. *
  14. ************************************************************************/
  15.  
  16. /* ----------------- DECLARATIONS FOR THIS SOURCE FILE ----------------*/
  17. #define INCL_DOSPROCESS
  18. #include <os2.h>
  19.  
  20. VOID cdecl main( SHORT argc, CHAR *argv[] )
  21. {
  22. DosExit( 0, FALSE );
  23. }
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.